type net.conn

22 uses

	net (current package)
		iprawsock.go#L100: 	conn
		iprawsock.go#L202: func newIPConn(fd *netFD) *IPConn { return &IPConn{conn{fd}} }
		net.go#L176: type conn struct {
		net.go#L180: func (c *conn) ok() bool { return c != nil && c.fd != nil }
		net.go#L185: func (c *conn) Read(b []byte) (int, error) {
		net.go#L197: func (c *conn) Write(b []byte) (int, error) {
		net.go#L209: func (c *conn) Close() error {
		net.go#L223: func (c *conn) LocalAddr() Addr {
		net.go#L233: func (c *conn) RemoteAddr() Addr {
		net.go#L241: func (c *conn) SetDeadline(t time.Time) error {
		net.go#L252: func (c *conn) SetReadDeadline(t time.Time) error {
		net.go#L263: func (c *conn) SetWriteDeadline(t time.Time) error {
		net.go#L275: func (c *conn) SetReadBuffer(bytes int) error {
		net.go#L287: func (c *conn) SetWriteBuffer(bytes int) error {
		net.go#L304: func (c *conn) File() (f *os.File, err error) {
		tcpsock.go#L113: 	conn
		tcpsock.go#L297: 	c := &TCPConn{conn{fd}}
		udpsock.go#L123: 	conn
		udpsock.go#L281: func newUDPConn(fd *netFD) *UDPConn { return &UDPConn{conn{fd}} }
		unixsock.go#L69: 	conn
		unixsock.go#L195: func newUnixConn(fd *netFD) *UnixConn { return &UnixConn{conn{fd}} }
		writev_unix.go#L14: func (c *conn) writeBuffers(v *Buffers) (int64, error) {